home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-11-15 | 508 b | 29 lines |
- #
- # SAS/C Makefile for chunker
- #
- #
-
- LINKER = SC LINK
- LINKOPS = NOCHECKABORT
-
- all: /dechunk /chunker
-
- chunker.o: chunker.c chunker.h machine.h
-
- dechunk.o: dechunk.c dechunk.h machine.h
-
- bfn.o: bfn.c bfn.h machine.h
-
- machine.o: machine.c machine.h
-
- /chunker: chunker.o bfn.o machine.o
- $(LINKER) $(LINKOPS) chunker.o bfn.o machine.o TO $@
- protect /chunker p add
-
- /dechunk: dechunk.o bfn.o machine.o
- $(LINKER) $(LINKOPS) dechunk.o bfn.o machine.o TO $@
- protect /dechunk p add
-
- clean:
- -delete \#?.o /\#?.lnk
-